home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / pppoeconf < prev    next >
Text File  |  2008-08-26  |  19KB  |  522 lines

  1. #!/bin/sh
  2. # (c) Eduard Bloch <blade@debian.org>, Gregory Colpart <reg@evolix.fr>
  3. # LICENSE: GPL
  4. # Purpose: initial PPPoE configuration on Debian
  5. # Depends: ppp, whiptail, gettext, sed, modconf
  6.  
  7. export TEXTDOMAINDIR="/usr/share/locale"
  8. export TEXTDOMAIN=pppoeconf
  9. export OPTSFILE="/etc/ppp/peers/dsl-provider"
  10. export REALINTFILE="/etc/network/interfaces"
  11.  
  12. # IMPORTANT: Do not use gdialog unless it has been fixed!
  13. DIALOG=whiptail
  14.  
  15. # Get -nox option to force ncurses use
  16. if [ "$1" = "-nox" ]; then
  17.     export NOX=true
  18.     shift  
  19. fi
  20.  
  21. # Set up (X)dialog - added by Fabian Franz <knx-ppp@fabian-franz.de>
  22. XDIALOG_HIGH_DIALOG_COMPAT=1
  23. export XDIALOG_HIGH_DIALOG_COMPAT
  24. if [ -n "$DISPLAY" ] && [ -x /usr/bin/Xdialog ] && [ ! -n "$NOX" ]; then
  25.   DIALOG="Xdialog"
  26.   X11="-X"
  27. fi
  28.  
  29. # SUID wrapper for KNOPPIX added by Klaus Knopper <knoppix@knopper.net>
  30. # mod. by EB
  31. PATH="/bin:/sbin:/usr/bin:/usr/sbin"
  32. export PATH
  33.  
  34. . /usr/bin/gettext.sh
  35.  
  36. # for non-root, try to reexec with sudo, warn otherwise
  37. if [ "`id -u`" != "0" ]; then
  38.    # sudo only 
  39.   if which sudo >/dev/null && ( sudo -l -S </dev/null >/dev/null 2>&1 ) ; then
  40.     exec sudo "$0" "$@"  || exit 1
  41.   elif which su-to-root >/dev/null; then
  42.     exec su-to-root $X11 -c "$0" "$@"  || exit 1
  43.   else
  44.     gettext "Please become root before running pppoeconf!"
  45.     echo
  46.     gettext "Press return to continue..."
  47.     echo
  48.     read enter
  49.     exit 1
  50.   fi
  51. fi
  52.  
  53. # EOF SUID wrapper
  54.  
  55. modprobe -q pppoe
  56. # recent ppp packages have a PPPoE discovery helper program
  57. if test -x /usr/sbin/pppoe-discovery && test -e /proc/net/pppoe ; then
  58.   kernel_pppoe=1
  59.   DISCOVERY_PROGRAM=pppoe-discovery
  60. else
  61.   if test -x /usr/sbin/pppoe ; then  
  62.     DISCOVERY_PROGRAM=pppoe
  63.   else
  64.     gettext "Please install ppp package and enable pppoe support in the kernel, or install pppoe package!"
  65.     echo
  66.     gettext "Press return to continue..."
  67.     echo
  68.     read enter
  69.     exit 1
  70.   fi
  71. fi
  72. export DISCOVERY_PROGRAM
  73.  
  74. # create a default peers file if there is none
  75. if ! test -r $OPTSFILE ; then
  76.    fresh_optsfile=1
  77.    cat <<EOM > $OPTSFILE
  78. # Minimalistic default options file for DSL/PPPoE connections
  79.  
  80. noipdefault
  81. defaultroute
  82. replacedefaultroute
  83. hide-password
  84. #lcp-echo-interval 30
  85. #lcp-echo-failure 4
  86. noauth
  87. persist
  88. #mtu 1492
  89. #persist
  90. #maxfail 0
  91. #holdoff 20
  92. EOM
  93. fi
  94. chmod 0640 $OPTSFILE
  95. chown root:dip $OPTSFILE
  96.  
  97. # get all Ethernet interfaces
  98. if test "$*" ; then 
  99.    list="$*"
  100.    force_manual=1
  101. else
  102.    list=$( LANG=C /sbin/ifconfig -a | grep "Ethernet" | grep -v irlan | cut -f1 -d" " )
  103. fi
  104.  
  105. if test "$list" ; then
  106.    test "$DIALOG" = "whiptail" && escmsg=$(gettext 'Or press ESC to abort here.')
  107.   number=`echo $list | wc -w| tr -d " "`
  108.   text=$(eval_ngettext \
  109.   'I found $number ethernet device:
  110. $list
  111.  
  112. Are all your ethernet interfaces listed above?
  113. (If No, modconf will be started so you can load the card drivers manually).
  114.  
  115. $escmsg' \
  116.   'I found $number ethernet devices:
  117. $list
  118.  
  119. Are all your ethernet interfaces listed above?
  120. (If No, modconf will be started so you can load the card drivers manually).
  121.  
  122. $escmsg' \
  123.   "$number" )
  124.   title=$(gettext 'ALL DEVICES FOUND?')
  125.   $DIALOG --title "$title" --clear --yesno "$text" 15 60
  126.   case $? in
  127.     1)
  128.       # configure and restart
  129.       modconf
  130.       $0
  131.       exit $?
  132.       ;;
  133.     255)
  134.       rm -rf "$TMP"
  135.       exit 1
  136.       ;;
  137.    esac
  138.  
  139.    INTFILE="`mktemp -t interfaces.pppoeconf.XXXXXX`" || exit 1
  140.    export INTFILE
  141.    cp $REALINTFILE $INTFILE
  142.  
  143.    # set up interfaces file if not present
  144.    if ! grep -q "^[[:space:]]*iface[[:space:]]\+dsl-provider" $INTFILE ; then
  145.       printf '\niface dsl-provider inet ppp\nprovider dsl-provider\n' >> $INTFILE
  146.    fi
  147.  
  148.    umask 177
  149.    # make a secure directory
  150.    #TMP="`mktemp -d -p /etc/ppp`"
  151.    TMP="`mktemp -d`"
  152.    chmod 700 $TMP
  153.    export TMP
  154.  
  155.    gettext '
  156. Most providers send the needed login information per mail. Some providers describe it in odd ways, assuming the user to input the data in their "user-friendly" setup programs. But in fact, these applications generate usuall PPP user names and passwords from the entered data. You can find the real names too and input the correct data in the dialog box.
  157.  
  158. For example, this are methods used some german providers:
  159.  
  160. Sample username (alias "login" or "login name"): 11111111111
  161.  
  162. T-Online T-DSL:
  163.   additional data:
  164.     sample T-Onlinenummer: 222222222222
  165.     sample Mitbenutzer: 0001
  166.  
  167.   complete username: 111111111111222222222222#0001@t-online.de
  168.  
  169. Telekom Business Online (DSL):
  170.  
  171.   complete username: t-online-com/111111111111@t-online-com.de
  172.  
  173. 1und1 uses another scheme (using above example):
  174.  
  175.   complete username: 1und1/11111111111
  176.  
  177. Cyberfun:
  178.  
  179.   complete username: sdt/11111111111
  180.  
  181. Komtel:
  182.   additional data:
  183.     downstream speed class: 768
  184.  
  185.   complete username: 11111111111@FoniNet-768
  186.  
  187. Net Cologne:
  188.  
  189.   complete username: 11111111111@netcologne.de
  190.  
  191. Q-DSL:
  192.  
  193.   complete username: 11111111111@q-dsl.de
  194.  
  195. Versatel:
  196.  
  197.   complete username: 11111111111@VersaNet-1024k
  198.  
  199. Webnetix:
  200.  
  201.   complete username: sdt/11111111111
  202. ' > $TMP/namehelp.txt
  203.  
  204.    sectempfile="`mktemp -p $TMP`"
  205.    export sectempfile
  206.    trap "rm -rf '$TMP'" 0 HUP INT TRAP TERM
  207.  
  208.    # now, execute an AC lookup on each interface
  209.    for mmm in '' ' -U ' ; do
  210.       for iface in $list; do
  211.          # use the first candidate only, this is done anyways, below
  212.          if test -z "`grep -l AC $TMP/*.pppoe 2>/dev/null| cut -f1 -d"." | head -n1`" ; then
  213.             title=$(gettext 'SCANNING DEVICE')
  214.             text=$(eval_gettext 'Looking for PPPoE Access Concentrator on $iface...')
  215.             if test -n "$mmm" ; then
  216.                mmode=$(gettext '(multi-modem mode)')
  217.             fi
  218.  
  219.             touch $TMP/pppoe.scan
  220.             ifconfig $iface up
  221.             ($DISCOVERY_PROGRAM $mmm -A -I $iface > $TMP/$iface.pppoe ; rm $TMP/pppoe.scan) &
  222.  
  223.             ( time=0 ; while test -f $TMP/pppoe.scan ; do time=`expr $time + 6`; echo $time; sleep 1; done ) | $DIALOG --title "$title" --gauge "$text $mmode" 10 60 0
  224.  
  225. true
  226.          fi
  227.       done
  228.    done
  229.    cd "$TMP"
  230.    if test "$force_manual" ; then
  231.       iface=$1
  232.    else
  233.       iface=`grep -l AC *.pppoe| sed "s/\.pppoe$//" | head -n1`
  234.    fi
  235.    ifacenocomma=$(echo $iface | sed -e 's/,/\\,/g')
  236.  
  237.    if test -z "$iface" ; then
  238.       title=$(gettext 'NOT CONNECTED')
  239.       text=$(eval_ngettext \
  240.       'Sorry, I scanned $number interface, but the Access Concentrator of your provider did not respond. Please check your network and modem cables. Another reason for the scan failure may also be another running pppoe process which controls the modem.' \
  241.       'Sorry, I scanned $number interfaces, but the Access Concentrator of your provider did not respond. Please check your network and modem cables. Another reason for the scan failure may also be another running pppoe process which controls the modem.' \
  242.       $number)
  243.  
  244.       $DIALOG --title "$title" --clear --msgbox "$text" 15 60
  245.       rm -rf "$TMP"
  246.       exit 1
  247.    fi
  248. #   title=$(gettext 'DSL CONNECTION FOUND')
  249. #   text=$(eval_gettext 'I found an Access Concentrator on $iface. Should I setup PPPOE for this connection?')
  250. #   $DIALOG --title "$title" --clear --yesno "$text" 15 60
  251. #  # STATUS: interface is $iface, we can continue
  252.   
  253.   if ! test "$fresh_optsfile" ; then 
  254.      title=$(gettext 'OKAY TO MODIFY')
  255.      text=$(eval_gettext 'If you continue with this program, the configuration file $OPTSFILE will be modified. Please make sure that you have a backup copy before saying Yes.
  256.  
  257. Continue with configuration?')
  258.      $DIALOG --title "$title" --clear --yesno "$text" 22 70
  259.      case $? in
  260.        1)
  261.          rm -rf "$TMP"
  262.          exit 0
  263.          ;;
  264.        255)
  265.          rm -rf "$TMP"
  266.          exit 1
  267.      esac
  268.   fi
  269.  
  270.   if ! grep -q "^[[:space:]]*\(allow-\)\?\(auto\|hotplug\)[[:space:]]\+$iface" $INTFILE ; then
  271.       echo >> $INTFILE
  272.       echo "auto $iface" >> $INTFILE
  273.   fi
  274.  
  275.   if ! grep -q "^[[:space:]]*iface[[:space:]]\+$iface" $INTFILE ; then
  276.       echo "iface $iface inet manual" >> $INTFILE
  277.   fi
  278.  
  279. #   if test "$?" = "0"; then
  280.       if [ "$kernel_pppoe" ]; then
  281.          # interface activation code - this sucks here, pppd plugin should do it as needed
  282.          #sed -i -e "s,pre-up /sbin/ifconfig[[:space:]]\+[^[:space:]]\+[[:space:]]\+up.#.line.maintained.by.pppoeconf,pre-up /sbin/ifconfig $ifacenocomma up # line maintained by pppoeconf," $INTFILE
  283.     # FIXME: Make sure that it gets added to correct iface stanza! (Because it's not always added above)
  284.     PATTERN_PREUP_IFACE="pre-up /sbin/ifconfig[[:space:]]\+[^[:space:]]\+[[:space:]]\+up.#.line.maintained.by.pppoeconf"
  285.     REPLACE_PREUP_IFACE="pre-up /sbin/ifconfig $ifacenocomma up # line maintained by pppoeconf"
  286.     if grep -q "$PATTERN_PREUP_IFACE" $INTFILE; then 
  287.         sed -i -e "s,$PATTERN_PREUP_IFACE,$REPLACE_PREUP_IFACE," $INTFILE
  288.     else
  289.         sed -i -e "s,[^#]*\(iface dsl-provider.*\),\1\n$REPLACE_PREUP_IFACE," $INTFILE
  290.     fi
  291.  
  292.          # change peers config file, sanity check first
  293. #       grep -q "^plugin.*rp-pppoe.so" $OPTSFILE || echo "plugin rp-pppoe.so $iface" >> $OPTSFILE
  294.        if [ "${iface##eth*}" = "" ]; then
  295.            # Name is eth*
  296.            grep -q "^[[:space:]]*plugin.*rp-pppoe.so" $OPTSFILE || echo "plugin rp-pppoe.so $iface" >> $OPTSFILE
  297.        else
  298.            grep -q "^[[:space:]]*plugin.*rp-pppoe.so" $OPTSFILE || echo "plugin rp-pppoe.so" >> $OPTSFILE
  299.            grep -q "^[[:space:]]*nic-$iface" $OPTSFILE || echo "nic-$iface" >> $OPTSFILE
  300.        fi
  301.  
  302.        # disable the pppoe tunnel command
  303.        if grep -q '^[[:space:]]*pty' $OPTSFILE ; then
  304.           sed -i -e 's/^[[:space:]]*pty/#pty/' $OPTSFILE
  305.        fi
  306.  
  307.        # set the interface
  308.        sed -i -e "s,^plugin.\+rp-pppoe.so[[:space:]]\+[^[:space:]]*,plugin rp-pppoe.so $ifacenocomma," $OPTSFILE
  309.        sed -i -e "s,^nic-[[:alnum:]]*,nic-$ifacenocomma," $OPTSFILE
  310.     else
  311.        # sanity check first, fix the config file
  312.  
  313.        # disable all lines
  314.        sed -i -e 's/^pty/#&/' $OPTSFILE
  315.        # install alternative lines
  316.        grep -q '^[[:space:]]*#[[:space:]]*pty.*pppoe.*-m.*1452' $OPTSFILE || echo '#pty "pppoe -I eth0 -T 80 -m 1452"' >> $OPTSFILE
  317.        grep -q '^[[:space:]]*#[[:space:]]*pty.*pppoe.*-m.*1412' $OPTSFILE || echo '#pty "pppoe -I eth0 -T 80 -m 1412"' >> $OPTSFILE
  318.        # activate or install default line before the question
  319.        sed -i -e '/^[[:space:]]*#[[:space:]]*pty "pppoe -I.*-T 80"/d' $OPTSFILE
  320.        grep -q '^[[:space:]]*pty' $OPTSFILE || echo 'pty "pppoe -I eth0 -T 80"' >> $OPTSFILE
  321.  
  322.        # set the interface
  323.        sed -i -e "s,-I[[:space:]]*[[:alnum:]]*,-I $ifacenocomma," $OPTSFILE
  324.     fi
  325.     # fix final newline
  326.     test -e /etc/ppp/pap-secrets && ( [ $(tail -1 /etc/ppp/pap-secrets | wc -l) -eq 0 ] || echo >> /etc/ppp/pap-secrets )
  327.     test -e /etc/ppp/chap-secrets && ( [ $(tail -1 /etc/ppp/chap-secrets | wc -l) -eq 0 ] || echo >> /etc/ppp/chap-secrets )
  328. #  else
  329. #    rm -rf "$TMP"
  330. #    exit 1
  331. #  fi
  332.  
  333.   # ask about sane options
  334.   #$DIALOG --title $"POPULAR OPTIONS" --clear --yesno $"Most people using popular dialup providers prefer the options 'noauth' and 'defaultroute' in their configuration and remove the 'nodetach' option. Further, for busy providers the lcp-echo-interval could be increased. Should I check your configuration file and change these settings where neccessary?" 22 70
  335.   title=$(gettext 'POPULAR OPTIONS')
  336.   text=$(gettext "Most people using popular dialup providers prefer the options 'noauth' and 'defaultroute' in their configuration and remove the 'nodetach' option. Should I check your configuration file and change these settings where neccessary?")
  337.   $DIALOG --title "$title" --clear --yesno "$text" 22 70
  338.   case $? in
  339.     0)
  340.       grep -q '^[[:space:]]*noauth' $OPTSFILE || echo 'noauth' >> $OPTSFILE
  341.       grep -q '^[[:space:]]*defaultroute' $OPTSFILE  || echo 'defaultroute' >> $OPTSFILE
  342.       sed -i -e "/^[[:space:]]*nodetach.*/d" $OPTSFILE
  343.       #sed -i -e "s/^lcp-echo-interval 20$/lcp-echo-interval 60/" $OPTSFILE
  344.       ;;
  345.     255)
  346.       rm -rf "$TMP"
  347.       exit 1
  348.       ;;
  349.   esac
  350.   
  351.   user=`grep ^user $OPTSFILE|cut -f2 -d" " | tr -d '"'`
  352.   test -z "$user" && user="username"
  353.   while test "$goahead" != "yes" ; do
  354.     title=$(gettext 'ENTER USERNAME')
  355.     text=$(gettext 'Please enter the username which you usually need for the PPP login to your provider in the input box below. If you wish to see the help screen, delete the username and press OK.')
  356.     $DIALOG --nocancel --title "$title" --clear --inputbox "$text" 15 60 $user 2> "$sectempfile"
  357.     user=`cat "$sectempfile"`
  358.     case $? in
  359.       0)
  360.         if test -z "$user" ; then
  361.           $DIALOG --scrolltext --textbox "$TMP/namehelp.txt" 17 75
  362.         else
  363.           sed -i -e '/^user .*/d' $OPTSFILE
  364.           echo  "user \"$user\"" >> $OPTSFILE
  365.           goahead="yes"
  366.           export goahead
  367.         fi
  368.         ;;
  369.       *)
  370.         rm -rf "$TMP"
  371.         exit 1
  372.         ;;
  373.     esac
  374.   done
  375.  
  376.   title=$(gettext 'ENTER PASSWORD')
  377.   text=$(gettext 'Please enter the password which you usually need for the PPP login to your provider in the input box below.
  378.  
  379. NOTE: you can see the password in plain text while typing.')
  380.   $DIALOG --nocancel --title "$title" --clear --inputbox "$text" 15 60 2> "$sectempfile"
  381.   pass=`cat "$sectempfile"`
  382.   usernoslash=$(echo $user | sed -e 's,/,\\/,')
  383.   case $? in
  384.     0)
  385.       sed -i -e "/^\"*$usernoslash\"* .*/ d" /etc/ppp/pap-secrets
  386.       echo "\"$user\" * \"$pass\"" >> /etc/ppp/pap-secrets
  387.       sed -i -e "/^\"*$usernoslash\"* .*/ d" /etc/ppp/chap-secrets
  388.       echo "\"$user\" * \"$pass\"" >> /etc/ppp/chap-secrets
  389.       ;;
  390.     *)
  391.       rm -rf "$TMP"
  392.       exit 1
  393.       ;;
  394.   esac
  395.  
  396.   # ask about DNS
  397.   title=$(gettext 'USE PEER DNS')
  398.   text=$(gettext 'You need at least one DNS IP address to resolve the normal host names. Normally your provider sends you addresses of useable servers when the connection is established. Would you like to add these addresses automatically to the list of nameservers in your local /etc/resolv.conf file? (recommended)')
  399.   $DIALOG --title "$title" --clear --yesno "$text" 15 60
  400.   case $? in
  401.     0)
  402.       grep -q "^[[:space:]]*usepeerdns" $OPTSFILE || echo "usepeerdns" >> $OPTSFILE
  403.       ;;
  404.     1)
  405.       sed -i -e "/^[[:space:]]*usepeerdns/d" $OPTSFILE
  406.       ;;
  407.     255)
  408.       rm -rf "$TMP"
  409.       exit 1
  410.       ;;
  411.   esac
  412.   
  413.   # ask about MSS limitation
  414.   title=$(gettext 'LIMITED MSS PROBLEM')
  415.   text=$(gettext "Many providers have routers that do not support TCP packets with a MSS higher than 1460. Usually, outgoing packets have this MSS when they go through one real Ethernet link with the default MTU size (1500). Unfortunately, if you are forwarding packets from other hosts (i.e. doing masquerading) the MSS may be increased depending on the packet size and the route to the client hosts, so your client machines won't be able to connect to some sites. There is a solution: the maximum MSS can be limited by pppoe. You can find more details about this issue in the pppoe documentation.
  416.  
  417. Should pppoe clamp MSS at 1452 bytes?
  418.  
  419. If unsure, say yes.
  420.  
  421. (If you still get problems described above, try setting to 1412 in the dsl-provider file.)")
  422.   $DIALOG --title "$title" --clear --yesno "$text" 22 70
  423.   case $? in
  424.     0)
  425.       if [ "$kernel_pppoe" ]; then
  426.         printf '#!/bin/sh\n# Enable MSS clamping (autogenerated by pppoeconf)\n\niptables -t mangle -o "$PPP_IFACE" --insert FORWARD 1 -p tcp --tcp-flags SYN,RST SYN -m tcpmss --mss 1400:1536 -j TCPMSS --clamp-mss-to-pmtu\n' > /etc/ppp/ip-up.d/0clampmss
  427.         printf '#!/bin/sh\n# Disable MSS clamping (autogenerated by pppoeconf)\n\niptables -t mangle -L -n -v --line-numbers | grep "TCPMSS.*$PPP_IFACE.*clamp" | cut -f1 -d " " | sort -r | xargs -n1 -r iptables -t mangle -D FORWARD\n' > /etc/ppp/ip-down.d/0clampmss
  428.         chmod 755 /etc/ppp/ip-up.d/0clampmss /etc/ppp/ip-down.d/0clampmss
  429.       else
  430.         # disable default line
  431.         sed -i -e 's/^pty/#&/' $OPTSFILE
  432.         # enable the one with our mss size
  433.         sed -i -e 's/^#\(pty.*-m 1452.*\)/\1/' $OPTSFILE
  434.         #rm -f "$sectempfile"
  435.       fi
  436.       ;;
  437.     255)
  438.       rm -rf "$TMP"
  439.       exit 1
  440.       ;;
  441.   esac
  442.  
  443.   if test -z "`mount | grep KNOPPIX`" ; then
  444.      title=$(gettext 'DONE')
  445.      text=$(gettext 'Your PPPD is configured now. Would you like to start the connection at boot time?')
  446.      $DIALOG --title "$title" --clear --yesno "$text" 15 60
  447.      if test "$?" = "0"; then
  448.         grep -q "^[[:space:]]*auto.*dsl-provider" $INTFILE || sed -i -e 's/^[[:space:]]*iface.*dsl-provider/auto dsl-provider\n&/' $INTFILE
  449.      else
  450.         sed -i -e '/^[[:space:]]*auto.*dsl-provider/d' $INTFILE
  451.      fi
  452.   fi
  453.  
  454.   cd /
  455.   
  456.   # end of story
  457.   rm -rf "$TMP"
  458.   chmod --reference=$REALINTFILE $INTFILE
  459.   # check that final file is valid or original one was already invalid. otherwise ask what to do
  460.   ifup -nai $INTFILE 2>/dev/null
  461.   if test "$?" = "1" &&  (ifup -na 2>/dev/null; test "$?" = "0"); then
  462.     title=$(gettext 'ERROR')
  463.     text=$(eval_gettext 'The interfaces file generated by pppoeconf appears to be invalid. This is probably because pppoeconf is unable to handle your original interfaces file. Should pppoeconf nevertheless change your interfaces file with the one that appears to be invalid?
  464. If you agree, you will probably break your network connectivity after rebooting, and cause some local problems if lo is down. Your original interfaces file will be moved to $REALINTFILE~ so you can restore it.
  465. If not, you will have to make sure that $iface is configured before starting your DSL connection and start the connection manually.
  466.  
  467. Note that this situation is not expected and you should consider submitting a bug report against pppoeconf including your original interfaces file and the one generated by pppoeconf.')
  468.     $DIALOG --title "$title" --clear --defaultno --yesno "$text" 20 75
  469.     case $? in
  470.       0)
  471.         mv -b $INTFILE $REALINTFILE || exit 1
  472.         ;;
  473.       1)
  474.         exit 0
  475.         ;;
  476.       255)
  477.         exit 1
  478.         ;;
  479.     esac
  480.   else
  481.     mv $INTFILE $REALINTFILE || exit 1
  482.   fi
  483.  
  484.   title=$(gettext 'ESTABLISH A CONNECTION')
  485.   text=$(gettext 'Now, you can make a DSL connection with "pon dsl-provider" and terminate it with "poff". Would you like to start the connection now?')
  486.   $DIALOG --title "$title" --clear --yesno "$text" 15 60
  487.   case $? in
  488.     0)
  489.       cd /
  490.       pon dsl-provider
  491.       title=$(gettext 'CONNECTION INITIATED')
  492.       text=$(gettext 'The DSL connection has been triggered. You can use the "plog" command to see the status or "ifconfig ppp0" for general interface info.')
  493.       $DIALOG --title "$title" --clear --msgbox "$text" 10 60
  494.       ;;
  495.     1)
  496.       exit 0
  497.       ;;
  498.     255)
  499.       exit 1
  500.       ;;
  501.   esac
  502.  
  503. else
  504.   title=$(gettext 'NO INTERFACE FOUND')
  505.   text=$(gettext 'Sorry, no working ethernet card could be found. If you do have an interface card which was not autodetected so far, you probably wish to load the driver manually using the modconf utility. Run modconf now?')
  506.   $DIALOG --title "$title" --clear --yesno "$text" 20 70
  507.   case $? in
  508.     0)
  509.       # configure and restart
  510.       modconf
  511.       exec $0
  512.       exit $?
  513.       ;;
  514.     1)
  515.       exit 0
  516.       ;;
  517.     255)
  518.       exit 1
  519.       ;;
  520.   esac
  521. fi
  522.